Get Mapping
Method 1
@RestController
public class HelloWorld {
@RequestMapping(method = RequestMethod.GET, path = "/hello-world")
public String greet() {
return "Hello World!";
}
}
Method 2
@RestController
public class HelloWorld {
@GetMapping("/hello-world")
public String greet() {
return "Hello World";
}
}